콰트로 블로그

콰트로 블로그
Author

김보람

Published

March 13, 2023

github 블로그 만들기

콰트로 블로그 만드는 법

  1. git에서 Repositories 생성
  • 생성시 Read.Me 체크
  1. 만들어진 레퍼토리의 HTTPS주소 복사

3.명령 프롬프트에서 Dropbox로 들어가기

cd Dropbox
  1. git clone “2번복사한주소”

  2. 콰트로 블로그 설정파일 자동 생성

quarto create-project --type website:blog
  1. 유저등록 (최초 한번)
git config --global user.email "내 깃허브 이메일"

git config --global user.name "내 깃허브 닉네임"

git config credential.helper store  #(아이디와 비번 저장)
git add .
git commit -m .
git push   (실행시 id/password작성)
  1. publish
quarto publish gh-pages --no-prompt --no-bropwer